home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / hgrpic10.zip / RAW2PIC.BAT < prev    next >
DOS Batch File  |  1991-05-02  |  119b  |  9 lines

  1.  echo off
  2.  if %1: == : goto DO_ALL
  3. :DO_SINGLE
  4.  a2b %1
  5.  goto DONE
  6. :DO_ALL
  7.  for %%f in (*.RAW) do a2b %%f
  8. :DONE
  9.